home *** CD-ROM | disk | FTP | other *** search
- rem
- rem Build the Main Librarys
- rem using either Microsoft or Borland tools
- rem
- @echo off
- if not (%debug%)==(ON) goto label05
- @echo on
- :label05
-
- if (%1)==() goto help
- if (%1)==(BCC) goto bcc
- if (%1)==(bcc) goto bcc
-
- del ..\inc\m*.lib
- goto build
-
- :bcc
- del ..\inc\b*.lib
-
- :build
- call large %1
- call small %1
- call tiny %1
- goto done
-
- :help
- echo To Use: DOS\ MK [MSC or BCC]
- echo Where: MSC specifies Microsoft C
- echo BCC specifies Borland C
-
- :done
-
-